
[dbo].[NavigationWorkflowParameters]
CREATE TABLE [dbo].[NavigationWorkflowParameters]
(
[DocumentVersionKey] [uniqueidentifier] NOT NULL,
[RemoveAfterDays] [int] NOT NULL,
[NotifyContactKey] [uniqueidentifier] NOT NULL,
[FirstWarningSentOn] [datetime] NULL,
[SecondWarningSentOn] [datetime] NULL,
[FirstNotificationSentOn] [datetime] NULL,
[SecondNotificationSentOn] [datetime] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[NavigationWorkflowParameters] ADD CONSTRAINT [PK_NavigationWorkflowParameters] PRIMARY KEY CLUSTERED ([DocumentVersionKey]) ON [PRIMARY]
GO